Welcome![Sign In][Sign Up]
Location:
Search - YACC JAVA

Search list

[ELanguagegrammatica-1.4.tar.gz

Description: Grammatica is a C# and Java parser generator (compiler compiler). It improves upon simlar tools (like yacc and ANTLR) by creating well-commented and readable source code, by having automatic error recovery and detailed error messages, and by support for testing and debugging grammars without generating source code. It supports LL(k) grammars with an unlimited number of look-ahead tokens.
Platform: | Size: 633058 | Author: | Hits:

[ELanguagecompiler([1].netstl)

Description: (1) 给定一段符合Pascal子集语法的语言,能成功转换成C语言; (2) 一个简单的说明文档; (3) 2007.7.14之前上传到ftp:// C07:C07@10.11.3.71/upload,用学号建立自己的目录; (4) (可额外加分5分)若有出错处理功能,请在说明文档中写明可以处理哪几项错误。 注意事项: (1) 两人一组 (2) 可以使用词法、语法自动生成工具,windows下有Flex,Bison,Linux下有Lex,Yacc,Java的有Jlex,JavaCC,ANTLR等 (3) 不用考虑Pascal和C的关键词不同问题,即Pascal子集语言中假设不出现int,for等作为变量标志符 (4) read()和write()可用由scanf(),printf()等组成的语句转换。 (5) 如果有疑问可以发信给我 xpqiu@fudan.edu.cn.
Platform: | Size: 48656 | Author: cy | Hits:

[ELanguagejava形式文法

Description: 现将本人搜集常用的程序设计语言的词法和形式文法提供给大家。其中,词法是按LEX格式编辑,形式文法是按YACC格式书写,大家可直接用LEX和YACC工具编译生成各类程序设计语言的分析器。-commonly used programming language syntax and grammar forms to the public. Among them, morphology is based on LEX format editing, grammar form is written by YACC format, we can use the LEX and YACC tools various compiler generation programming language analyzer.
Platform: | Size: 5623 | Author: 翟青 | Hits:

[ELanguagegrammatica-1.4.tar

Description: Grammatica is a C# and Java parser generator (compiler compiler). It improves upon simlar tools (like yacc and ANTLR) by creating well-commented and readable source code, by having automatic error recovery and detailed error messages, and by support for testing and debugging grammars without generating source code. It supports LL(k) grammars with an unlimited number of look-ahead tokens.
Platform: | Size: 632832 | Author: none | Hits:

[Documentslex05

Description: 从lex&yacc说到编译器(5.实用javacc)-from lexyacc said compiler (five. Practical JavaCC)
Platform: | Size: 11264 | Author: 张国 | Hits:

[ELanguagejava形式文法

Description: 现将本人搜集常用的程序设计语言的词法和形式文法提供给大家。其中,词法是按LEX格式编辑,形式文法是按YACC格式书写,大家可直接用LEX和YACC工具编译生成各类程序设计语言的分析器。-commonly used programming language syntax and grammar forms to the public. Among them, morphology is based on LEX format editing, grammar form is written by YACC format, we can use the LEX and YACC tools various compiler generation programming language analyzer.
Platform: | Size: 5120 | Author: 翟青 | Hits:

[ELanguagecompiler([1].netstl)

Description: (1) 给定一段符合Pascal子集语法的语言,能成功转换成C语言; (2) 一个简单的说明文档; (3) 2007.7.14之前上传到ftp:// C07:C07@10.11.3.71/upload,用学号建立自己的目录; (4) (可额外加分5分)若有出错处理功能,请在说明文档中写明可以处理哪几项错误。 注意事项: (1) 两人一组 (2) 可以使用词法、语法自动生成工具,windows下有Flex,Bison,Linux下有Lex,Yacc,Java的有Jlex,JavaCC,ANTLR等 (3) 不用考虑Pascal和C的关键词不同问题,即Pascal子集语言中假设不出现int,for等作为变量标志符 (4) read()和write()可用由scanf(),printf()等组成的语句转换。 (5) 如果有疑问可以发信给我 xpqiu@fudan.edu.cn.
Platform: | Size: 48128 | Author: cy | Hits:

[ELanguageYacc

Description: 语法分析器 生成工具 YACC 实例 说明 含源码 运行程序-YACC parser generation tool with source code examples to run programs
Platform: | Size: 595968 | Author: J | Hits:

[JSP/Javajava-yacc

Description: 采用C编写的java语法分析器,内含明确的测试用例,程序可源码-By C parser written in java, containing a clear test case, the program can be source
Platform: | Size: 147456 | Author: winter | Hits:

[JSP/JavaFrom-lex-yacc-to-javacc

Description: lex,yacc是词法、语法分析工具,文档介绍了词法语法分析过程及java下的lex-yacc工具——java-lex, yacc is a lexical, grammar analysis tools, document describes the process of lexical and syntax analysis under the lex-yacc java tools- javacc
Platform: | Size: 47104 | Author: coransaku | Hits:

[ELanguagedecaf_PA1

Description: 使用lex和yacc写的Decaf语言的编译器前段代码,包括词法分析与语法分析。 Decaf是一门类Java的教学语言-Written using lex and yacc compiler front-end code, including lexical analysis and syntax analysis
Platform: | Size: 821248 | Author: czw | Hits:

[JSP/Javaantlr

Description: ANTLR—Another Tool for Language Recognition,其前身是PCCTS,它为包括Java,C++,C#在内的语言提供了一个通过语法描述来自动构造自定义语言的识别器(recognizer),编译器(parser)和解释器(translator)的框架。ANTLR可以通过断言(Predicate)解决识别冲突;支持动作(Action)和返回值(Return Value)来;更棒的是,它可以根据输入自动生成语法树并可视化的显示出来(这一点我将在下面的例子中演示)。由此,计算机语言的翻译变成了一项普通的任务—在这之前YACC/LEX显得过于学院派,而以LL(k)为基础的ANTLR虽然在效率上还略有不足,但是经过近些年来的升级修改,使得ANTLR足以应付现存的绝大多数应用。感谢Terence Parr博士和他的同事们十几年来的出色工作,他们为编译理论的基础和语言工具的构造做了大量基础性工作,也直接导致了ANTLR的产生。-ANTLR-Another Tool for Language Recognition. Its predecessor, PCCTS, including Java, C++, C#, including the language provides a syntax description to automatically construct self-definition language identification (recognizer), the compiler (parser) and explain the framework of the (translator on). ANTLR by the assertion (the Predicate) to address the problems identified conflicts support action (Action) and the return value (Return Value) Even better, it can be automatically generated based on the input syntax tree and visualization is displayed (which I will The following example demonstrates). As a result, the computer language translation has become a common task- in this YACC to/LEX seem the too academic, ANTLR-based LL (k), although the efficiency is slightly less, but after a recent years of upgrade modifications, making the ANTLR enough to cope with the vast majority of the existing application. Thank the excellent work, Terence Parr, Ph.D., and his colleagues more than a dec
Platform: | Size: 420864 | Author: issacs | Hits:

[Software EngineeringMiniJavaComp

Description: MiniJavaCompiler Java Cup, JFlex. YACC.
Platform: | Size: 395264 | Author: MatiasGualino | Hits:

[ELanguagebyaccj1.15_win32

Description: 是Byaccj的yacc编译的可执行文件,用于Java语言,是Byacc的Java版本。他的源码网上比较容易得到。-Byacc,yacc-J
Platform: | Size: 39936 | Author: 弓小黄 | Hits:

[ELanguagedecaf_PA1A

Description: 使用lex和yacc写的Decaf语言的编译器前段代码,包括词法分析与语法分析。 Decaf是一门类Java的教学语言,这是THU2015年的PA-1(Written using lex and yacc compiler front-end code, including lexical analysis and syntax analysis. This is a PA from THU in 2015.)
Platform: | Size: 6011904 | Author: 御风 | Hits:

CodeBus www.codebus.net